home *** CD-ROM | disk | FTP | other *** search
/ CD Charme 1 / CD Charme 01.iso / mac / hybride / GLOWING / HOLO / HOLODECK.DIR / 00013_Script_13 < prev    next >
Text File  |  1994-11-01  |  1KB  |  35 lines

  1. on OKtocallyou 
  2.   --Q0: Is it OK if I call you ----?
  3.   global userName
  4.   set the puppet of sprite 20 to TRUE
  5.   set the visible of sprite 20 to TRUE
  6.   
  7.   if userName = "BadBoy" then
  8.     set the castNum of sprite 20 to the number of cast "Q0BBOY.MOV"
  9.     set curMovie = "Q0BBOY.MOV"
  10.   else if userName = "GoodLookin" then
  11.     set the castNum of sprite 20 to the number of cast "Q0GOOD.MOV"
  12.     set curMovie = "Q0GOOD.MOV"
  13.   else if userName = "Sweetheart" then
  14.     set the castNum of sprite 20 to the number of cast "Q0SWEET.MOV"
  15.     set curMovie = "Q0SWEET.MOV"
  16.   else if userName = "Stud" then
  17.     set the castNum of sprite 20 to the number of cast "Q0STUD.MOV"
  18.     set curMovie = "Q0STUD.MOV"
  19.   else
  20.     set userName = "Sweetheart"
  21.     set the castNum of sprite 20 to the number of cast "Q0SWEET.MOV"
  22.     set curMovie = "Q0SWEET.MOV"
  23.   end if
  24.   
  25.   LoadMovie curMovie
  26.   spriteBox 20, 160, 130, 480, 370
  27.   updateStage
  28.   set the movieRate of sprite 20 to 0
  29.   --240X180 VIDEO BOX
  30.   --spriteBox 20, 200, 160, 440, 340
  31.   --set the volume of sprite 20 to 180
  32.   getQTLen 20
  33.   --set the movieRate of sprite 20 to 1
  34.   upDateStage
  35. end OKtocallyou